home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / tbl_change.php < prev    next >
PHP Script  |  2005-02-03  |  44KB  |  911 lines

  1. <?php
  2. /* $Id: tbl_change.php,v 2.46 2005/02/04 13:56:13 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4. error_reporting(E_ALL);
  5.  
  6. /**
  7.  * Get the variables sent or posted to this script and displays the header
  8.  */
  9. require_once('./libraries/grab_globals.lib.php');
  10. $js_to_run = 'tbl_change.js';
  11. require_once('./header.inc.php');
  12. require_once('./libraries/relation.lib.php'); // foreign keys
  13.  
  14.  
  15. /**
  16.  * Displays the query submitted and its result
  17.  */
  18. if (!empty($disp_message)) {
  19.     if (isset($goto)) {
  20.         $goto_cpy      = $goto;
  21.         $goto          = 'tbl_properties.php?'
  22.                        . PMA_generate_common_url($db, $table)
  23.                        . '&$show_query=1'
  24.                        . '&sql_query=' . (isset($disp_query) ? urlencode($disp_query) : '');
  25.     } else {
  26.         $show_query = '1';
  27.     }
  28.     if (isset($sql_query)) {
  29.         $sql_query_cpy = $sql_query;
  30.         unset($sql_query);
  31.     }
  32.     if (isset($disp_query)) {
  33.         $sql_query     = $disp_query;
  34.     }
  35.     PMA_showMessage($disp_message);
  36.     if (isset($goto_cpy)) {
  37.         $goto          = $goto_cpy;
  38.         unset($goto_cpy);
  39.     }
  40.     if (isset($sql_query_cpy)) {
  41.         $sql_query     = $sql_query_cpy;
  42.         unset($sql_query_cpy);
  43.     }
  44. }
  45.  
  46.  
  47. /**
  48.  * Defines the url to return to in case of error in a sql statement
  49.  */
  50. if (!isset($goto)) {
  51.     $goto    = 'db_details.php';
  52. }
  53. if (!preg_match('@^(db_details|tbl_properties|tbl_select|ldi_table)@', $goto)) {
  54.     $err_url = $goto . "?" . PMA_generate_common_url($db) . "&sql_query=" . urlencode($sql_query);
  55. } else {
  56.     $err_url = $goto . '?'
  57.              . PMA_generate_common_url($db)
  58.              . ((preg_match('@^(tbl_properties|tbl_select)@', $goto)) ? '&table=' . urlencode($table) : '');
  59. }
  60.  
  61.  
  62. /**
  63.  * Ensures db and table are valid, else moves to the "parent" script
  64.  */
  65. require('./libraries/db_table_exists.lib.php');
  66.  
  67.  
  68. /**
  69.  * Sets parameters for links
  70.  */
  71. $url_query = PMA_generate_common_url($db, $table)
  72.            . '&goto=tbl_properties.php';
  73.  
  74. require('./tbl_properties_table_info.php');
  75.  
  76. /**
  77.  * Displays top menu links
  78.  */
  79. require('./tbl_properties_links.php');
  80.  
  81. /**
  82.  * Get the list of the fields of the current table
  83.  */
  84. PMA_DBI_select_db($db);
  85. $table_def = PMA_DBI_query('SHOW FIELDS FROM ' . PMA_backquote($table) . ';', NULL, PMA_DBI_QUERY_STORE);
  86. if (isset($primary_key)) {
  87.     if (is_array($primary_key)) {
  88.         $primary_key_array = $primary_key;
  89.     } else {
  90.         $primary_key_array = array(0 => $primary_key);
  91.     }
  92.  
  93.     $row = array();
  94.     $result = array();
  95.     foreach ($primary_key_array AS $rowcount => $primary_key) {
  96.         $local_query             = 'SELECT * FROM ' . PMA_backquote($table) . ' WHERE ' . $primary_key . ';';
  97.         $result[$rowcount]       = PMA_DBI_query($local_query, NULL, PMA_DBI_QUERY_STORE);
  98.         $row[$rowcount]          = PMA_DBI_fetch_assoc($result[$rowcount]);
  99.         $primary_keys[$rowcount] = $primary_key;
  100.  
  101.         // No row returned
  102.         if (!$row[$rowcount]) {
  103.             unset($row[$rowcount]);
  104.             unset($primary_key_array[$rowcount]);
  105.             $goto_cpy          = $goto;
  106.             $goto              = 'tbl_properties.php?'
  107.                                . PMA_generate_common_url($db, $table)
  108.                                . '&$show_query=1'
  109.                                . '&sql_query=' . urlencode($local_query);
  110.             if (isset($sql_query)) {
  111.                 $sql_query_cpy = $sql_query;
  112.                 unset($sql_query);
  113.             }
  114.             $sql_query         = $local_query;
  115.             PMA_showMessage($strEmptyResultSet);
  116.             $goto              = $goto_cpy;
  117.             unset($goto_cpy);
  118.             if (isset($sql_query_cpy)) {
  119.                 $sql_query    = $sql_query_cpy;
  120.                 unset($sql_query_cpy);
  121.             }
  122.             echo "\n";
  123.             require_once('./footer.inc.php');
  124.         } // end if (no record returned)
  125.     }
  126. } else {
  127.     $result = PMA_DBI_query('SELECT * FROM ' . PMA_backquote($table) . ' LIMIT 1;', NULL, PMA_DBI_QUERY_STORE);
  128.     unset($row);
  129. }
  130.  
  131. // <markus@noga.de>
  132. // retrieve keys into foreign fields, if any
  133. $cfgRelation = PMA_getRelationsParam();
  134. $foreigners  = ($cfgRelation['relwork'] ? PMA_getForeigners($db, $table) : FALSE);
  135.  
  136.  
  137. /**
  138.  * Displays the form
  139.  */
  140. // loic1: autocomplete feature of IE kills the "onchange" event handler and it
  141. //        must be replaced by the "onpropertychange" one in this case
  142. $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5)
  143.                  ? 'onpropertychange'
  144.                  : 'onchange';
  145. // Had to put the URI because when hosted on an https server,
  146. // some browsers send wrongly this form to the http server.
  147. ?>
  148.  
  149. <?php if ($cfg['CtrlArrowsMoving']) { ?>
  150. <!-- Set on key handler for moving using by Ctrl+arrows -->
  151. <script src="libraries/keyhandler.js" type="text/javascript" language="javascript"></script>
  152. <script type="text/javascript" language="javascript">
  153. <!--
  154. var switch_movement = 0;
  155. document.onkeydown = onKeyDownArrowsHandler;
  156. // -->
  157. </script>
  158. <?php } ?>
  159.  
  160. <!-- Change table properties form -->
  161. <form method="post" action="tbl_replace.php" name="insertForm" <?php if ($is_upload) echo ' enctype="multipart/form-data"'; ?>>
  162.     <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
  163.     <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
  164.     <input type="hidden" name="pos" value="<?php echo isset($pos) ? $pos : 0; ?>" />
  165.     <input type="hidden" name="session_max_rows" value="<?php echo isset($session_max_rows) ? $session_max_rows : ''; ?>" />
  166.     <input type="hidden" name="disp_direction" value="<?php echo isset($disp_direction) ? $disp_direction : ''; ?>" />
  167.     <input type="hidden" name="repeat_cells" value="<?php echo isset($repeat_cells) ? $repeat_cells : ''; ?>" />
  168.     <input type="hidden" name="dontlimitchars" value="<?php echo (isset($dontlimitchars) ? $dontlimitchars : 0); ?>" />
  169.     <input type="hidden" name="err_url" value="<?php echo urlencode($err_url); ?>" />
  170.     <input type="hidden" name="sql_query" value="<?php echo isset($sql_query) ? urlencode($sql_query) : ''; ?>" />
  171. <?php
  172. if (isset($primary_key_array)) {
  173.     foreach ($primary_key_array AS $primary_key) {
  174.         ?>
  175.     <input type="hidden" name="primary_key[]" value="<?php echo urlencode($primary_key); ?>" />
  176. <?php
  177.     }
  178. }
  179. echo "\n";
  180.  
  181. if ($cfg['PropertiesIconic'] == true) {
  182.     // We need to copy the value or else the == 'both' check will always return true
  183.     $propicon = (string)$cfg['PropertiesIconic'];
  184.  
  185.     if ($propicon == 'both') {
  186.         $iconic_spacer = '<div class="nowrap">';
  187.     } else {
  188.         $iconic_spacer = '';
  189.     }
  190.  
  191.     $titles['Browse']     = $iconic_spacer . '<img width="16" height="16" src="' . $pmaThemeImage . 'b_browse.png" alt="' . $strBrowseForeignValues . '" title="' . $strBrowseForeignValues . '" border="0" />';
  192.  
  193.     if ($propicon == 'both') {
  194.         $titles['Browse']        .= ' ' . $strBrowseForeignValues . '</div>';
  195.     }
  196. } else {
  197.     $titles['Browse']        = $strBrowseForeignValues;
  198. }
  199.  
  200. // Set if we passed the first timestamp field
  201. $timestamp_seen = 0;
  202. $fields_cnt     = PMA_DBI_num_rows($table_def);
  203.  
  204. // Set a flag here because the 'if' would not be valid in the loop
  205. // if we set a value in some field
  206. $insert_mode = (!isset($row) ? TRUE : FALSE);
  207. if ($insert_mode) {
  208.     $loop_array  = array();
  209.     for ($i = 0; $i < $cfg['InsertRows']; $i++) $loop_array[] = FALSE;
  210. } else {
  211.     $loop_array  = $row;
  212. }
  213.  
  214. while ($trow = PMA_DBI_fetch_assoc($table_def)) {
  215.     $trow_table_def[] = $trow;
  216. }
  217.  
  218. $tabindex = 0;
  219. $tabindex_for_function = +1000;
  220. $tabindex_for_null     = +2000;
  221. $tabindex_for_value    = 0;
  222. $o_rows   = 0;
  223. foreach ($loop_array AS $vrowcount => $vrow) {
  224.     if ($vrow === FALSE) {
  225.         unset($vrow);
  226.     }
  227.  
  228.     if ($insert_mode) {
  229.         $jsvkey = $vrowcount;
  230.         $browse_foreigners_uri = '&pk=' . $vrowcount;
  231.     } else {
  232.         $jsvkey = urlencode($primary_keys[$vrowcount]);
  233.         $browse_foreigners_uri = '&pk=' . urlencode($primary_keys[$vrowcount]);
  234.     }
  235.     $vkey = '[multi_edit][' . $jsvkey . ']';
  236.  
  237.     $vresult = (isset($result) && is_array($result) && isset($result[$vrowcount]) ? $result[$vrowcount] : $result);
  238.     if ($insert_mode && $vrowcount > 0) {
  239.         echo '<input type="checkbox" checked="checked" name="insert_ignore_' . $vrowcount . '" id="insert_ignore_check_' . $vrowcount . '">';
  240.         echo '<label for="insert_ignore_check_' . $vrowcount . '">' . $strIgnore . '</label><br />' . "\n";
  241.     }
  242. ?>
  243.     <table border="<?php echo $cfg['Border']; ?>" cellpadding="2" cellspacing="1">
  244.         <tr>
  245.             <th><?php echo $strField; ?></th>
  246.             <th><?php echo $strType; ?></th>
  247. <?php
  248.     if ($cfg['ShowFunctionFields']) {
  249.         echo '          <th>' . $strFunction . '</th>' . "\n";
  250.     }
  251. ?>
  252.             <th><?php echo $strNull; ?></th>
  253.             <th><?php echo $strValue; ?></th>
  254.         </tr>
  255. <?php
  256.  
  257.     // garvin: For looping on multiple rows, we need to reset any variable used inside the loop to indicate sth.
  258.     $timestamp_seen = 0;
  259.     unset($first_timestamp);
  260.  
  261.     // Sets a multiplier used for input-field counts (as zero cannot be used, advance the counter plus one)
  262.     $m_rows = $o_rows + 1;
  263.  
  264.     for ($i = 0; $i < $fields_cnt; $i++) {
  265.         // Display the submit button after every 15 lines --swix
  266.         // (wanted to use an <a href="#bottom"> and <a name> instead,
  267.         // but it didn't worked because of the <base href>)
  268.  
  269.         if ((($o_rows * $fields_cnt + $i) % 15 == 0) && ($i + $o_rows != 0)) {
  270.             ?>
  271.         <tr>
  272.             <th colspan="5" align="right" class="tblFooters">
  273.                 <input type="submit" value="<?php echo $strGo; ?>" /> 
  274.             </th>
  275.         </tr>
  276.             <?php
  277.         } // end if
  278.         echo "\n";
  279.  
  280.         $row_table_def   = $trow_table_def[$i];
  281.         $row_table_def['True_Type'] = preg_replace('@\(.*@s', '', $row_table_def['Type']);
  282.  
  283.         $field           = $row_table_def['Field'];
  284.  
  285.         // removed previous PHP3-workaround that caused a problem with
  286.         // field names like '000'
  287.         $rowfield = $field;
  288.  
  289.         // d a t e t i m e
  290.         //
  291.         // loic1: current date should not be set as default if the field is NULL
  292.         //        for the current row
  293.         // lem9:  but do not put here the current datetime if there is a default
  294.         //        value (the real default value will be set in the
  295.         //        Default value logic below)
  296.  
  297.         // Note: (tested in MySQL 4.0.16): when lang is some UTF-8,
  298.         // $row_table_def['Default'] is not set if it contains NULL:
  299.         // Array ( [Field] => d [Type] => datetime [Null] => YES [Key] => [Extra] => [True_Type] => datetime )
  300.         // but, look what we get if we switch to iso: (Default is NULL)
  301.         // Array ( [Field] => d [Type] => datetime [Null] => YES [Key] => [Default] => [Extra] => [True_Type] => datetime )
  302.         // so I force a NULL into it (I don't think it's possible
  303.         // to have an empty default value for DATETIME)
  304.         // then, the "if" after this one will work
  305.         if ($row_table_def['Type'] == 'datetime'
  306.             && !isset($row_table_def['Default'])
  307.             && isset($row_table_def['Null'])
  308.             && $row_table_def['Null'] == 'YES') {
  309.             $row_table_def['Default'] = NULL;
  310.         }
  311.  
  312.         if ($row_table_def['Type'] == 'datetime'
  313.             && (!isset($row_table_def['Default']))
  314.             && (!is_null($row_table_def['Default']))) {
  315.             // INSERT case
  316.             if ($insert_mode) {
  317.                 if (isset($vrow)) {
  318.                     $vrow[$rowfield] = date('Y-m-d H:i:s', time());
  319.                 } else {
  320.                     $vrow = array($rowfield => date('Y-m-d H:i:s', time()));
  321.                 }
  322.             }
  323.             // UPDATE case with an empty and not NULL value under PHP4
  324.             else if (empty($vrow[$rowfield]) && is_null($vrow[$rowfield])) {
  325.                 $vrow[$rowfield] = date('Y-m-d H:i:s', time());
  326.             } // end if... else if...
  327.         }
  328.         $len             = (preg_match('@float|double@', $row_table_def['Type']))
  329.                          ? 100
  330.                          : PMA_DBI_field_len($vresult, $i);
  331.         $first_timestamp = 0;
  332.  
  333.         $bgcolor = ($i % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
  334.         ?>
  335.         <tr>
  336.             <td <?php echo ($cfg['LongtextDoubleTextarea'] && strstr($row_table_def['True_Type'], 'longtext') ? 'rowspan="2"' : ''); ?> align="center" bgcolor="<?php echo $bgcolor; ?>"><?php echo htmlspecialchars($field); ?></td>
  337.         <?php
  338.         echo "\n";
  339.  
  340.         // The type column
  341.         $is_binary                  = stristr($row_table_def['Type'], ' binary');
  342.         $is_blob                    = stristr($row_table_def['Type'], 'blob');
  343.         $is_char                    = stristr($row_table_def['Type'], 'char');
  344.         switch ($row_table_def['True_Type']) {
  345.             case 'set':
  346.                 $type         = 'set';
  347.                 $type_nowrap  = '';
  348.                 break;
  349.             case 'enum':
  350.                 $type         = 'enum';
  351.                 $type_nowrap  = '';
  352.                 break;
  353.             case 'timestamp':
  354.                 if (!$timestamp_seen) {   // can only occur once per table
  355.                     $timestamp_seen  = 1;
  356.                     $first_timestamp = 1;
  357.                 }
  358.                 $type         = $row_table_def['Type'];
  359.                 $type_nowrap  = ' nowrap="nowrap"';
  360.                 break;
  361.  
  362.             default:
  363.                 $type         = $row_table_def['Type'];
  364.                 $type_nowrap  = ' nowrap="nowrap"';
  365.                 break;
  366.         }
  367.         ?>
  368.             <td align="center" bgcolor="<?php echo $bgcolor; ?>"<?php echo $type_nowrap; ?>>
  369.                 <?php echo $type; ?>
  370.             </td>
  371.         <?php
  372.         echo "\n";
  373.  
  374.         // Prepares the field value
  375.         $real_null_value = FALSE;
  376.         if (isset($vrow)) {
  377.             if (!isset($vrow[$rowfield])
  378.               || (function_exists('is_null') && is_null($vrow[$rowfield]))) {
  379.                 $real_null_value = TRUE;
  380.                 $vrow[$rowfield]   = '';
  381.                 $special_chars = '';
  382.                 $data          = $vrow[$rowfield];
  383.             } else {
  384.                 // loic1: special binary "characters"
  385.                 if ($is_binary || $is_blob) {
  386.                     $vrow[$rowfield] = str_replace("\x00", '\0', $vrow[$rowfield]);
  387.                     $vrow[$rowfield] = str_replace("\x08", '\b', $vrow[$rowfield]);
  388.                     $vrow[$rowfield] = str_replace("\x0a", '\n', $vrow[$rowfield]);
  389.                     $vrow[$rowfield] = str_replace("\x0d", '\r', $vrow[$rowfield]);
  390.                     $vrow[$rowfield] = str_replace("\x1a", '\Z', $vrow[$rowfield]);
  391.                 } // end if
  392.                 $special_chars   = htmlspecialchars($vrow[$rowfield]);
  393.                 $data            = $vrow[$rowfield];
  394.             } // end if... else...
  395.             // loic1: if a timestamp field value is not included in an update
  396.             //        statement MySQL auto-update it to the current timestamp
  397.             $backup_field  = ($row_table_def['True_Type'] == 'timestamp')
  398.                            ? ''
  399.                            : '<input type="hidden" name="fields_prev' . $vkey . '[' . urlencode($field) . ']" value="' . urlencode($vrow[$rowfield]) . '" />';
  400.         } else {
  401.             // loic1: display default values
  402.             if (!isset($row_table_def['Default'])) {
  403.                 $row_table_def['Default'] = '';
  404.                 $real_null_value          = TRUE;
  405.                 $data                     = '';
  406.             } else {
  407.                 $data                     = $row_table_def['Default'];
  408.             }
  409.             $special_chars = htmlspecialchars($row_table_def['Default']);
  410.             $backup_field  = '';
  411.         }
  412.  
  413.         $idindex  = ($o_rows * $fields_cnt) + $i + 1;
  414.         $tabindex = (($idindex - 1) * 3) + 1;
  415.  
  416.         // The function column
  417.         // -------------------
  418.         // Change by Bernard M. Piller <bernard@bmpsystems.com>
  419.         // We don't want binary data to be destroyed
  420.         // Note: from the MySQL manual: "BINARY doesn't affect how the column is
  421.         //       stored or retrieved" so it does not mean that the contents is
  422.         //       binary
  423.         if ($cfg['ShowFunctionFields']) {
  424.             if (($cfg['ProtectBinary'] && $is_blob)
  425.                 || ($cfg['ProtectBinary'] == 'all' && $is_binary)) {
  426.                 echo '        <td align="center" bgcolor="'. $bgcolor . '">' . $strBinary . '</td>' . "\n";
  427.             } else if (strstr($row_table_def['True_Type'], 'enum') || strstr($row_table_def['True_Type'], 'set')) {
  428.                 echo '        <td align="center" bgcolor="'. $bgcolor . '">--</td>' . "\n";
  429.             } else {
  430.                 ?>
  431.             <td bgcolor="<?php echo $bgcolor; ?>">
  432.                 <select name="funcs<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_function); ?>" id="field_<?php echo $idindex; ?>_1">
  433.                     <option></option>
  434.                 <?php
  435.                 echo "\n";
  436.                 $selected     = '';
  437.  
  438.                 // garvin: Find the current type in the RestrictColumnTypes. Will result in 'FUNC_CHAR'
  439.                 // or something similar. Then directly look up the entry in the RestrictFunctions array,
  440.                 // which will then reveal the available dropdown options
  441.                 if (isset($cfg['RestrictFunctions']) && isset($cfg['RestrictColumnTypes']) && isset($cfg['RestrictColumnTypes'][strtoupper($row_table_def['True_Type'])]) && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($row_table_def['True_Type'])]])) {
  442.                     $current_func_type  = $cfg['RestrictColumnTypes'][strtoupper($row_table_def['True_Type'])];
  443.                     $dropdown           = $cfg['RestrictFunctions'][$current_func_type];
  444.                     $default_function   = $cfg['DefaultFunctions'][$current_func_type];
  445.                 } else {
  446.                     $dropdown = array();
  447.                     $default_function   = '';
  448.                 }
  449.  
  450.                 $dropdown_built = array();
  451.                 $op_spacing_needed = FALSE;
  452.  
  453.                 // garvin: loop on the dropdown array and print all available options for that field.
  454.                 $cnt_dropdown = count($dropdown);
  455.                 for ($j = 0; $j < $cnt_dropdown; $j++) {
  456.                     // Is current function defined as default?
  457.                     $selected = ($first_timestamp && $dropdown[$j] == $cfg['DefaultFunctions']['first_timestamp'])
  458.                                 || (!$first_timestamp && $dropdown[$j] == $default_function)
  459.                               ? ' selected="selected"'
  460.                               : '';
  461.                     echo '                ';
  462.                     echo '<option' . $selected . '>' . $dropdown[$j] . '</option>' . "\n";
  463.                     $dropdown_built[$dropdown[$j]] = 'TRUE';
  464.                     $op_spacing_needed = TRUE;
  465.                 }
  466.  
  467.                 // garvin: For compatibility's sake, do not let out all other functions. Instead
  468.                 // print a seperator (blank) and then show ALL functions which weren't shown
  469.                 // yet.
  470.                 $cnt_functions = count($cfg['Functions']);
  471.                 for ($j = 0; $j < $cnt_functions; $j++) {
  472.                     if (!isset($dropdown_built[$cfg['Functions'][$j]]) || $dropdown_built[$cfg['Functions'][$j]] != 'TRUE') {
  473.                         // Is current function defined as default?
  474.                         $selected = ($first_timestamp && $cfg['Functions'][$j] == $cfg['DefaultFunctions']['first_timestamp'])
  475.                                     || (!$first_timestamp && $cfg['Functions'][$j] == $default_function)
  476.                                   ? ' selected="selected"'
  477.                                   : '';
  478.                         if ($op_spacing_needed == TRUE) {
  479.                             echo '                ';
  480.                             echo '<option value="">--------</option>' . "\n";
  481.                             $op_spacing_needed = FALSE;
  482.                         }
  483.  
  484.                         echo '                ';
  485.                         echo '<option' . $selected . '>' . $cfg['Functions'][$j] . '</option>' . "\n";
  486.                     }
  487.                 } // end for
  488.                 unset($selected);
  489.                 ?>
  490.                 </select>
  491.             </td>
  492.                 <?php
  493.             }
  494.         } // end if ($cfg['ShowFunctionFields'])
  495.         echo "\n";
  496.  
  497.         // The null column
  498.         // ---------------
  499.         echo '        <td bgcolor="' . $bgcolor . '">' . "\n";
  500.         if (!(($cfg['ProtectBinary'] && $is_blob) || ($cfg['ProtectBinary'] == 'all' && $is_binary))
  501.             && $row_table_def['Null'] == 'YES') {
  502.             echo '            <input type="checkbox" tabindex="' . ($tabindex + $tabindex_for_null) . '"'
  503.                  . ' name="fields_null' . $vkey . '[' . urlencode($field) . ']"';
  504.             if ($real_null_value && !$first_timestamp) {
  505.                 echo ' checked="checked"';
  506.             }
  507.             echo ' id="field_' . ($idindex) . '_2"';
  508.             $onclick         = ' onclick="if (this.checked) {nullify(';
  509.             if (strstr($row_table_def['True_Type'], 'enum')) {
  510.                 if (strlen($row_table_def['Type']) > 20) {
  511.                     $onclick .= '1, ';
  512.                 } else {
  513.                     $onclick .= '2, ';
  514.                 }
  515.             } else if (strstr($row_table_def['True_Type'], 'set')) {
  516.                 $onclick     .= '3, ';
  517.             } else if ($foreigners && isset($foreigners[$field])) {
  518.                 $onclick     .= '4, ';
  519.             } else {
  520.                 $onclick     .= '5, ';
  521.             }
  522.             $onclick         .= '\'' . urlencode($field) . '\', \'' . md5($field) . '\', \'' . $vkey . '\'); this.checked = true}; return true" />' . "\n";
  523.             echo $onclick;
  524.         } else {
  525.             echo '             ' . "\n";
  526.         }
  527.         echo '        </td>' . "\n";
  528.  
  529.         // The value column (depends on type)
  530.         // ----------------
  531.  
  532.         require('./libraries/get_foreign.lib.php');
  533.  
  534.         if (isset($foreign_link) && $foreign_link == true) {
  535.             ?>
  536.             <td bgcolor="<?php echo $bgcolor; ?>">
  537.             <?php echo $backup_field . "\n"; ?>
  538.             <input type="hidden" name="fields_type<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="foreign" />
  539.             <input type="hidden" name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="" id="field_<?php echo ($idindex); ?>_1" />
  540.             <input type="text"   name="field_<?php echo md5($field); ?><?php echo $vkey; ?>[]" class="textfield" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" id="field_<?php echo ($idindex); ?>_3" value="<?php echo htmlspecialchars($data); ?>" />
  541.             <script type="text/javascript" language="javascript">
  542.                 document.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes,resizable=yes\'); return false" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo urlencode($field) . $browse_foreigners_uri; ?>"><?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
  543.             </script>
  544.             </td>
  545.             <?php
  546.         } else if (isset($disp_row) && is_array($disp_row)) {
  547.             ?>
  548.             <td bgcolor="<?php echo $bgcolor; ?>">
  549.             <?php echo $backup_field . "\n"; ?>
  550.             <input type="hidden" name="fields_type<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="foreign" />
  551.             <input type="hidden" name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="" id="field_<?php echo $idindex; ?>_1" />
  552.             <select name="field_<?php echo md5($field); ?><?php echo $vkey; ?>[]" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" id="field_<?php echo ($idindex); ?>_3">
  553.                 <?php echo PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data, 100); ?>
  554.             </select>
  555.             </td>
  556.             <?php
  557.             unset($disp_row);
  558.         }
  559.         else if ($cfg['LongtextDoubleTextarea'] && strstr($type, 'longtext')) {
  560.             ?>
  561.             <td bgcolor="<?php echo $bgcolor; ?>"> </td>
  562.         </tr>
  563.         <tr>
  564.             <td colspan="4" align="right" bgcolor="<?php echo $bgcolor; ?>">
  565.                 <?php echo $backup_field . "\n"; ?>
  566.                 <textarea name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" rows="<?php echo ($cfg['TextareaRows']*2); ?>" cols="<?php echo ($cfg['TextareaCols']*2); ?>" dir="<?php echo $text_dir; ?>" id="field_<?php echo ($idindex); ?>_3"
  567.                     <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"><?php echo $special_chars; ?></textarea>
  568.             </td>
  569.           <?php
  570.         }
  571.         else if (strstr($type, 'text')) {
  572.             ?>
  573.             <td bgcolor="<?php echo $bgcolor; ?>">
  574.                 <?php echo $backup_field . "\n"; ?>
  575.                 <textarea name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" rows="<?php echo $cfg['TextareaRows']; ?>" cols="<?php echo $cfg['TextareaCols']; ?>" dir="<?php echo $text_dir; ?>" id="field_<?php echo ($idindex); ?>_3"
  576.                     <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>"><?php echo $special_chars; ?></textarea>
  577.             </td>
  578.             <?php
  579.             echo "\n";
  580.             if (strlen($special_chars) > 32000) {
  581.                 echo '        <td bgcolor="' . $bgcolor . '">' . $strTextAreaLength . '</td>' . "\n";
  582.             }
  583.         }
  584.         else if ($type == 'enum') {
  585.             $enum        = PMA_getEnumSetOptions($row_table_def['Type']);
  586.             $enum_cnt    = count($enum);
  587.             ?>
  588.             <td bgcolor="<?php echo $bgcolor; ?>">
  589.                 <input type="hidden" name="fields_type<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="enum" />
  590.                 <input type="hidden" name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="" />
  591.             <?php
  592.             echo "\n" . '            ' . $backup_field;
  593.  
  594.             // show dropdown or radio depend on length
  595.             if (strlen($row_table_def['Type']) > 20) {
  596.                 echo "\n";
  597.                 ?>
  598.                 <select name="field_<?php echo md5($field); ?><?php echo $vkey; ?>[]" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" id="field_<?php echo ($idindex); ?>_3">
  599.                     <option value=""></option>
  600.                 <?php
  601.                 echo "\n";
  602.  
  603.                 for ($j = 0; $j < $enum_cnt; $j++) {
  604.                     // Removes automatic MySQL escape format
  605.                     $enum_atom = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $enum[$j]));
  606.                     echo '                ';
  607.                     //echo '<option value="' . htmlspecialchars($enum_atom) . '"';
  608.                     echo '<option value="' . urlencode($enum_atom) . '"';
  609.                     if ($data == $enum_atom
  610.                         || ($data == '' && (!isset($primary_key) || $row_table_def['Null'] != 'YES')
  611.                             && isset($row_table_def['Default']) && $enum_atom == $row_table_def['Default'])) {
  612.                         echo ' selected="selected"';
  613.                     }
  614.                     echo '>' . htmlspecialchars($enum_atom) . '</option>' . "\n";
  615.                 } // end for
  616.  
  617.                 ?>
  618.                 </select>
  619.                 <?php
  620.             } // end if
  621.             else {
  622.                 echo "\n";
  623.                 for ($j = 0; $j < $enum_cnt; $j++) {
  624.                     // Removes automatic MySQL escape format
  625.                     $enum_atom = str_replace('\'\'', '\'', str_replace('\\\\', '\\', $enum[$j]));
  626.                     echo '            ';
  627.                     echo '<input type="radio" name="field_' . md5($field) . $vkey . '[]" value="' . urlencode($enum_atom) . '" id="field_' . ($idindex) . '_3_'  . $j . '" onclick="if (typeof(document.forms[\'insertForm\'].elements[\'fields_null' . str_replace('"', '\"', $vkey) . '[' . urlencode($field) . ']\']) != \'undefined\') {document.forms[\'insertForm\'].elements[\'fields_null' . str_replace('"', '\"', $vkey) . '[' . urlencode($field) .']\'].checked = false}"';
  628.                     if ($data == $enum_atom
  629.                         || ($data == '' && (!isset($primary_key) || $row_table_def['Null'] != 'YES')
  630.                             && isset($row_table_def['Default']) && $enum_atom == $row_table_def['Default'])) {
  631.                         echo ' checked="checked"';
  632.                     }
  633.                     echo 'tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
  634.                     echo '<label for="field_' . ($tabindex + $tabindex_for_value) . '_3_' . $j . '">' . htmlspecialchars($enum_atom) . '</label>' . "\n";
  635.                 } // end for
  636.  
  637.             } // end else
  638.             echo "\n";
  639.             ?>
  640.             </td>
  641.             <?php
  642.             echo "\n";
  643.         }
  644.         else if ($type == 'set') {
  645.             $set = PMA_getEnumSetOptions($row_table_def['Type']);
  646.  
  647.             if (isset($vset)) {
  648.                 unset($vset);
  649.             }
  650.             for ($vals = explode(',', $data); list($t, $k) = each($vals);) {
  651.                 $vset[$k] = 1;
  652.             }
  653.             $countset = count($set);
  654.             $size = min(4, $countset);
  655.             ?>
  656.             <td bgcolor="<?php echo $bgcolor; ?>">
  657.                 <?php echo $backup_field . "\n"; ?>
  658.                 <input type="hidden" name="fields_type<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="set" />
  659.                 <input type="hidden" name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="" />
  660.                 <select name="field_<?php echo md5($field); ?><?php echo $vkey; ?>[]" size="<?php echo $size; ?>" multiple="multiple" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" id="field_<?php echo ($idindex); ?>_3">
  661.             <?php
  662.             echo "\n";
  663.             for ($j = 0; $j < $countset; $j++) {
  664.                 echo '                ';
  665.                 //echo '<option value="'. htmlspecialchars($set[$j]) . '"';
  666.                 echo '<option value="'. urlencode($set[$j]) . '"';
  667.                 if (isset($vset[$set[$j]]) && $vset[$set[$j]]) {
  668.                     echo ' selected="selected"';
  669.                 }
  670.                 echo '>' . htmlspecialchars($set[$j]) . '</option>' . "\n";
  671.             } // end for
  672.             ?>
  673.                 </select>
  674.             </td>
  675.             <?php
  676.         }
  677.         // Change by Bernard M. Piller <bernard@bmpsystems.com>
  678.         // We don't want binary data destroyed
  679.         else if ($is_binary || $is_blob) {
  680.             if (($cfg['ProtectBinary'] && $is_blob)
  681.                 || ($cfg['ProtectBinary'] == 'all' && $is_binary)) {
  682.                 echo "\n";
  683.                 ?>
  684.             <td bgcolor="<?php echo $bgcolor; ?>">
  685.                 <?php
  686.                     echo $strBinaryDoNotEdit;
  687.                     if (isset($data)) {
  688.                         $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1);
  689.                         echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')';
  690.                         unset($data_size);
  691.                     }
  692.                     echo "\n";
  693.                 ?>
  694.                 <input type="hidden" name="fields_type<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="protected" />
  695.                 <input type="hidden" name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="" />
  696.                 <?php
  697.             } else if ($is_blob) {
  698.                 echo "\n";
  699.                 ?>
  700.             <td bgcolor="<?php echo $bgcolor; ?>">
  701.                 <?php echo $backup_field . "\n"; ?>
  702.                 <textarea name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" rows="<?php echo $cfg['TextareaRows']; ?>" cols="<?php echo $cfg['TextareaCols']; ?>" dir="<?php echo $text_dir; ?>" id="field_<?php echo ($idindex); ?>_3"
  703.                     <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" ><?php echo $special_chars; ?></textarea>
  704.                 <?php
  705.  
  706.             } else {
  707.                 if ($len < 4) {
  708.                     $fieldsize = $maxlength = 4;
  709.                 } else {
  710.                     $fieldsize = (($len > 40) ? 40 : $len);
  711.                     $maxlength = $len;
  712.                 }
  713.                 echo "\n";
  714.                 ?>
  715.             <td bgcolor="<?php echo $bgcolor; ?>">
  716.                 <?php echo $backup_field . "\n"; ?>
  717.                 <input type="text" name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>" maxlength="<?php echo $maxlength; ?>" class="textfield" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" id="field_<?php echo ($idindex); ?>_3" />
  718.                 <?php
  719.             } // end if...elseif...else
  720.  
  721.             // Upload choice (only for BLOBs because the binary
  722.             // attribute does not imply binary contents)
  723.             // (displayed whatever value the ProtectBinary has)
  724.  
  725.             if ($is_upload && $is_blob) {
  726.                 echo '<input type="file" name="fields_upload_' . urlencode($field) . $vkey . '" class="textfield" id="field_' . ($idindex) . '_3" size="10" /> ';
  727.  
  728.                 // find maximum upload size, based on field type
  729.                 $max_field_sizes = array(
  730.                     'tinyblob'   =>        '256',
  731.                     'blob'       =>      '65536',
  732.                     'mediumblob' =>   '16777216',
  733.                     'longblob'   => '4294967296'); // yeah, really
  734.  
  735.                 $this_field_max_size = $max_upload_size; // from PHP max
  736.                 if ($this_field_max_size > $max_field_sizes[$type]) {
  737.                    $this_field_max_size = $max_field_sizes[$type];
  738.                 }
  739.                 echo PMA_displayMaximumUploadSize($this_field_max_size) . "\n";
  740.                 echo '                ' . PMA_generateHiddenMaxFileSize($this_field_max_size) . "\n";
  741.             }
  742.  
  743.             if (!empty($cfg['UploadDir'])) {
  744.                 if (substr($cfg['UploadDir'], -1) != '/') {
  745.                     $cfg['UploadDir'] .= '/';
  746.                 }
  747.                 if ($handle = @opendir($cfg['UploadDir'])) {
  748.                     $is_first = 0;
  749.                     while ($file = @readdir($handle)) {
  750.                         if (is_file($cfg['UploadDir'] . $file) && !PMA_checkFileExtensions($file, '.sql')) {
  751.                             if ($is_first == 0) {
  752.                                 echo "<br />\n";
  753.                                 echo '    <i>' . $strOr . '</i>' . ' ' . $strWebServerUploadDirectory . ':<br />' . "\n";
  754.                                 echo '        <select size="1" name="fields_uploadlocal_' . urlencode($field) . $vkey . '">' . "\n";
  755.                                 echo '            <option value="" selected="selected"></option>' . "\n";
  756.                             } // end if (is_first)
  757.                             echo '            <option value="' . htmlspecialchars($file) . '">' . htmlspecialchars($file) . '</option>' . "\n";
  758.                             $is_first++;
  759.                         } // end if (is_file)
  760.                     } // end while
  761.                     if ($is_first > 0) {
  762.                         echo '        </select>' . "\n";
  763.                     } // end if (isfirst > 0)
  764.                     @closedir($handle);
  765.                 } else {
  766.                     echo '        <font color="red">' . $strError . '</font><br />' . "\n";
  767.                     echo '        ' . $strWebServerUploadDirectoryError . "\n";
  768.                 }
  769.             } // end if (web-server upload directory)
  770.  
  771.             echo '</td>';
  772.  
  773.         } // end else if ( binary or blob)
  774.         else {
  775.             // For char or varchar, respect the maximum length (M); for other
  776.             // types (int or float), the length is not a limit on the values that
  777.             // can be entered, so let's be generous (20) (we could also use the
  778.             // real limits for each numeric type)
  779.             // 2004-04-07, it turned out that 20 was not generous enough
  780.             // for the maxlength
  781.             if ($is_char) {
  782.                 $fieldsize = (($len > 40) ? 40 : $len);
  783.                 $maxlength = $len;
  784.             }
  785.             else {
  786.                 $fieldsize = 20;
  787.                 $maxlength = 99;
  788.             } // end if... else...
  789.             echo "\n";
  790.             ?>
  791.             <td bgcolor="<?php echo $bgcolor; ?>">
  792.                 <?php echo $backup_field . "\n"; ?>
  793.             <?php
  794.             if ($is_char && isset($cfg['CharEditing']) && ($cfg['CharEditing'] == 'textarea')) {
  795.                 echo "\n";
  796.                 ?>
  797.                 <textarea name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" rows="<?php echo $cfg['CharTextareaRows']; ?>" cols="<?php echo $cfg['CharTextareaCols']; ?>" dir="<?php echo $text_dir; ?>" id="field_<?php echo ($idindex); ?>_3"
  798.                     <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" ><?php echo $special_chars; ?></textarea>
  799.                 <?php
  800.             } else {
  801.                 echo "\n";
  802.                 ?>
  803.                 <input type="text" name="fields<?php echo $vkey; ?>[<?php echo urlencode($field); ?>]" value="<?php echo $special_chars; ?>" size="<?php echo $fieldsize; ?>" maxlength="<?php echo $maxlength; ?>" class="textfield" <?php echo $chg_evt_handler; ?>="return unNullify('<?php echo urlencode($field); ?>', '<?php echo $jsvkey; ?>')" tabindex="<?php echo ($tabindex + $tabindex_for_value); ?>" id="field_<?php echo ($idindex); ?>_3" />
  804.                 <?php
  805.                 if ($type == 'date' || $type == 'datetime' || substr($type, 0, 9) == 'timestamp') {
  806.                     ?>
  807.                     <script type="text/javascript">
  808.                     <!--
  809.                     document.write('<a title="<?php echo $strCalendar;?>" href="javascript:openCalendar(\'<?php echo PMA_generate_common_url();?>\', \'insertForm\', \'field_<?php echo ($idindex); ?>_3\', \'<?php echo (PMA_MYSQL_INT_VERSION >= 40100 && substr($type, 0, 9) == 'timestamp') ? 'datetime' : substr($type, 0, 9); ?>\')"><img class="calendar" src="<?php echo $pmaThemeImage; ?>b_calendar.png" alt="<?php echo $strCalendar; ?>"/></a>');
  810.                     //-->
  811.                     </script>
  812.                     <?php
  813.                 }
  814.             }
  815.             echo "\n";
  816.             ?>
  817.             </td>
  818.             <?php
  819.         }
  820.         echo "\n";
  821.         ?>
  822.         </tr>
  823.         <?php
  824.     echo "\n";
  825.     } // end for
  826.     $o_rows++;
  827.     echo '  </table><br />';
  828. } // end foreach on multi-edit
  829. ?>
  830.     <br />
  831.  
  832.     <table border="0" cellpadding="5" cellspacing="0">
  833.     <tr>
  834.         <td valign="middle" nowrap="nowrap">
  835. <?php
  836. if (isset($primary_key)) {
  837.     ?>
  838.             <input type="radio" name="submit_type" value="<?php echo $strSave; ?>" id="radio_submit_type_save" checked="checked" tabindex="<?php echo ($tabindex + $tabindex_for_value + 1); ?>" style="vertical-align: middle" /><label for="radio_submit_type_save"><?php echo $strSave; ?></label><br />
  839.                   <b><?php echo $strOr; ?></b><br />
  840.             <input type="radio" name="submit_type" value="<?php echo $strInsertAsNewRow; ?>" id="radio_submit_type_insert_as_new_row" tabindex="<?php echo ($tabindex + $tabindex_for_value + 2); ?>" style="vertical-align: middle" /><label for="radio_submit_type_insert_as_new_row"><?php echo $strInsertAsNewRow; ?></label>
  841.     <?php
  842. } else {
  843.     echo "\n";
  844.     ?>
  845.             <input type="hidden" name="submit_type" value="<?php echo $strInsertAsNewRow; ?>" />
  846.     <?php
  847.     echo '            ' . $strInsertAsNewRow . "\n";
  848. }
  849. echo "\n";
  850.  
  851. // Defines whether "insert a new row after the current insert" should be
  852. // checked or not (keep this choice sticky)
  853. // but do not check both radios, because Netscape 4.8 would display both checked
  854. if (!empty($disp_message)) {
  855.     $checked_after_insert_new_insert = ' checked="checked"';
  856.     $checked_after_insert_back = '';
  857. } else {
  858.     $checked_after_insert_back = ' checked="checked"';
  859.     $checked_after_insert_new_insert = '';
  860. }
  861. ?>
  862.         </td>
  863.         <td valign="middle">
  864.                <b>-- <?php echo $strAnd; ?> --</b>   
  865.         </td>
  866.         <td valign="middle" nowrap="nowrap">
  867.             <input type="radio" name="after_insert" value="back" id="radio_after_insert_back" <?php echo $checked_after_insert_back; ?> tabindex="<?php echo ($tabindex + $tabindex_for_value + 3); ?>" style="vertical-align: middle" /><label for="radio_after_insert_back"><?php echo $strAfterInsertBack; ?></label><br />
  868.  
  869.                   <b><?php echo $strOr; ?></b><br />
  870.             <input type="radio" name="after_insert" value="new_insert" id="radio_after_insert_new_insert"<?php echo $checked_after_insert_new_insert; ?> tabindex="<?php echo ($tabindex + $tabindex_for_value + 4); ?>" style="vertical-align: middle" /><label for="radio_after_insert_new_insert"><?php echo $strAfterInsertNewInsert; ?></label><br />
  871.  
  872. <?php
  873. if (isset($primary_key))
  874. {?>
  875.                   <b><?php echo $strOr; ?></b><br />
  876.             <input type="radio" name="after_insert" value="same_insert" id="radio_after_insert_same_insert"<?php echo $checked_after_insert_new_insert; ?> tabindex="<?php echo ($tabindex + $tabindex_for_value + 5); ?>" style="vertical-align: middle" /><label for="radio_after_insert_same_insert"><?php echo $strAfterInsertSame; ?></label><br />
  877. <?php
  878.     // If we have just numeric primary key, we can also edit next
  879.     if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $primary_key)) {
  880. ?>
  881.                   <b><?php echo $strOr; ?></b><br />
  882.             <input type="radio" name="after_insert" value="edit_next" id="radio_after_insert_edit_next"<?php echo $checked_after_insert_new_insert; ?> tabindex="<?php echo ($tabindex + $tabindex_for_value + 5); ?>" style="vertical-align: middle" /><label for="radio_after_insert_edit_next"><?php echo $strAfterInsertNext; ?></label><br />
  883. <?php
  884.     }
  885. }
  886. ?>
  887.         </td>
  888.     </tr>
  889.  
  890.     <tr>
  891.         <td>
  892. <?php echo PMA_showHint($strUseTabKey); ?>
  893.         </td>
  894.         <td colspan="3" align="right" valign="middle">
  895.             <input type="submit" value="<?php echo $strGo; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 6); ?>" id="buttonYes" />
  896.             <input type="reset" value="<?php echo $strReset; ?>" tabindex="<?php echo ($tabindex + $tabindex_for_value + 7); ?>" />
  897.         </td>
  898.     </tr>
  899.     </table>
  900.  
  901. </form>
  902.  
  903.  
  904. <?php
  905. /**
  906.  * Displays the footer
  907.  */
  908. echo "\n";
  909. require_once('./footer.inc.php');
  910. ?>
  911.